crypto/elliptic/internal/nistec.P384Point.y (field)
21 uses
crypto/elliptic/internal/nistec (current package)
p384.go#L35: x, y, z *fiat.P384Element
p384.go#L42: y: new(fiat.P384Element).One(),
p384.go#L51: y: new(fiat.P384Element),
p384.go#L59: p.y.Set(q.y)
p384.go#L88: p.y.Set(y)
p384.go#L138: yy := new(fiat.P384Element).Mul(p.y, zinv)
p384.go#L152: t1 := new(fiat.P384Element).Mul(p1.y, p2.y) // t1 := Y1 * Y2
p384.go#L154: t3 := new(fiat.P384Element).Add(p1.x, p1.y) // t3 := X1 + Y1
p384.go#L155: t4 := new(fiat.P384Element).Add(p2.x, p2.y) // t4 := X2 + Y2
p384.go#L159: t4.Add(p1.y, p1.z) // t4 := Y1 + Z1
p384.go#L160: x3 := new(fiat.P384Element).Add(p2.y, p2.z) // X3 := Y2 + Z2
p384.go#L196: q.y.Set(y3)
p384.go#L207: t1 := new(fiat.P384Element).Square(p.y) // t1 := Y ^ 2
p384.go#L209: t3 := new(fiat.P384Element).Mul(p.x, p.y) // t3 := X * Y
p384.go#L233: t0.Mul(p.y, p.z) // t0 := Y * Z
p384.go#L242: q.y.Set(y3)
p384.go#L250: q.y.Select(p1.y, p2.y, cond)